home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / iv.dir / 00042_remove button callback.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  584 b   |  21 lines

  1. on mouseDown
  2.   global givState
  3.   set clik to the clickOn
  4.   set the castNum of sprite clik to the number of cast "remove button down"
  5.   updateStage()
  6.   repeat while the stillDown
  7.     nothing()
  8.   end repeat
  9.   if the mouseCast = the number of cast "remove button down" then
  10.     if the controlDown then
  11.       set the userName of givState to EMPTY
  12.       set the userTitle of givState to EMPTY
  13.       set the userLoc of givState to EMPTY
  14.       EditListRemoveAll()
  15.     else
  16.       EditListRemove()
  17.     end if
  18.   end if
  19.   set the castNum of sprite clik to the number of cast "remove button"
  20. end
  21.